
   .brand-group {
  display: flex;
  align-items: center;
  gap: 18px;           /* space between name and icons */
  flex-wrap: wrap;     /* if screen is narrow, icons wrap below */
}

.company-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  white-space: nowrap; /* keep name on one line until it must wrap */
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;           /* gap between each icon */
  flex-shrink: 0;      /* stops icons from shrinking if name grows */
}

.social-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}
  .social-icons img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
  }
/* ---------- Variables ---------- */
:root {
  --max: 1180px;
  --accent: #bc13fe;
  --accent-2: #9b51e0;
  --muted: #6b6b6b;
  --text: #0b0b0b;
  --bg: #fbfbfb;
  --card: #fff;
  --radius: 14px;
  --ease: cubic-bezier(.2, .9, .3, 1);
  --shadow: 0 16px 40px rgba(10, 10, 10, 0.08);
}

/* ---------- Base Styles ---------- */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.center { text-align: center; }
.muted { color: var(--muted); }

/* ---------- Section Title ---------- */
.section-title {
  font-family: "Jost", sans-serif;
  font-size: 28px;
  margin-bottom: 6px;
}

/* ---------- Panda Promise ---------- */
.panda-promise {
  padding: 36px 0;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.promise-card {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 320ms var(--ease);
color: #0b0b0b;
}
.promise-card:hover {
  transform: translateY(-10px) rotateX(6deg);
}
.promise-card .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

/* ---------- Responsive Breakpoints ---------- */
@media (max-width: 1024px) {
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 22px;
  }
  .promise-card h3 {
    font-size: 16px;
  }
}
